home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / lang / FPL_v147.lha / fpl / src / config.h < prev    next >
C/C++ Source or Header  |  1996-08-05  |  494b  |  25 lines

  1. /*
  2.  * General config setup headers.
  3.  */
  4.  
  5. #ifdef SUNOS
  6. #include <varargs.h>
  7. #define VARARG_FUNCTIONS
  8. #ifndef UNIX
  9. #define UNIX
  10. #endif
  11. #endif
  12.  
  13.  
  14. #if defined(__GCC_NEW_VARARGS__) /* && defined(__GCC__) */
  15. /*
  16.  * If you want this file to be compiled using the va_* macros instead of the
  17.  * dirty "address of parameter version", define as below!
  18.  * (Without this define, SunOS 4.1.x versions will likely crash!)
  19.  */
  20.  
  21. #define VARARG_FUNCTIONS /* should be defined before the includes below */
  22. #endif
  23.  
  24.  
  25.